From c35e0cba3967849c4fc5f66983b34472745f4dae Mon Sep 17 00:00:00 2001 From: Daniel Boles Date: Mon, 17 Dec 2018 19:57:09 +0000 Subject: [PATCH] RGBA: Fix example to_string output for reality/CSS * We don't output spaces anywhere in the code, unlike the doc suggested. * CSS explicitly forbids whitespace between function names and lparens: https://stackoverflow.com/questions/13877198 --- gdk/gdkrgba.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gdk/gdkrgba.c b/gdk/gdkrgba.c index de1c594337..fe82773f14 100644 --- a/gdk/gdkrgba.c +++ b/gdk/gdkrgba.c @@ -353,8 +353,8 @@ gdk_rgba_equal (gconstpointer p1, * @rgba: a #GdkRGBA * * Returns a textual specification of @rgba in the form - * `rgb (r, g, b)` or - * `rgba (r, g, b, a)`, + * `rgb(r,g,b)` or + * `rgba(r g,b,a)`, * where “r”, “g”, “b” and “a” represent the red, green, * blue and alpha values respectively. r, g, and b are * represented as integers in the range 0 to 255, and a -- 2.30.2